home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / hypprn.h < prev    next >
C/C++ Source or Header  |  1994-10-10  |  639b  |  23 lines

  1. #ifndef _HYPERTEXT_PRINT_H_
  2. #define _HYPERTEXT_PRINT_H_
  3.  
  4. #include "hypview.h"
  5. #include "button.h"
  6. #include "contkit.h"
  7.  
  8. class HypertextPrint : public HypertextView
  9.     {
  10.     protected:
  11.     Button* print_to_prn;
  12. //    Button* print_to_file;
  13.     public:
  14.     HypertextPrint(rect coordinates, char* vName, char* fName = "",
  15.            int res = FIXED,
  16.            int interv = pScreenSet->sub_interval,
  17.            BORDERS b_type = SHOW_BORDER, int s = 10, char* h = "",
  18.            int bak = pColorSet->colors.BAK_COLOR,
  19.            int attr = pColorSet->colors.ATTR_COLOR,
  20.            int p_height = st_page_height);
  21.     };
  22.  
  23. #endif _HYPERTEXT_PRINT_H_